projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a07585
)
(coding_restore_composition): Lisp_Object/int mixup.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Mon, 17 Nov 2003 23:23:15 +0000
(23:23 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Mon, 17 Nov 2003 23:23:15 +0000
(23:23 +0000)
src/coding.c
patch
|
blob
|
history
diff --git
a/src/coding.c
b/src/coding.c
index 897538f38359427ad9cf93d448864c388b5e6ced..910fc8faa688b1c04a3142dc14afb5aaa0f922de 100644
(file)
--- a/
src/coding.c
+++ b/
src/coding.c
@@
-5458,8
+5458,8
@@
coding_restore_composition (coding, obj)
for (j = 0; j < len; j++)
args[j] = make_number (data[4 + j]);
components = (method == COMPOSITION_WITH_ALTCHARS
- ? Fstring (
make_number (len)
, args)
- : Fvector (
make_number (len)
, args));
+ ? Fstring (
len
, args)
+ : Fvector (
len
, args));
}
compose_text (data[1], data[2], components, Qnil, obj);
}